Skip to content

deps(etcd)(deps): bump the etcd-dependencies group in /etcd with 3 updates#6

Merged
azrod merged 1 commit into
mainfrom
dependabot/go_modules/etcd/etcd-dependencies-1ad59d8b3c
Oct 18, 2025
Merged

deps(etcd)(deps): bump the etcd-dependencies group in /etcd with 3 updates#6
azrod merged 1 commit into
mainfrom
dependabot/go_modules/etcd/etcd-dependencies-1ad59d8b3c

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 22, 2025

Copy link
Copy Markdown
Contributor

Bumps the etcd-dependencies group in /etcd with 3 updates: github.com/kivigo/kivigo, github.com/testcontainers/testcontainers-go and go.etcd.io/etcd/client/v3.

Updates github.com/kivigo/kivigo from 1.5.2-0.20250914212215-f5f2f8b90039 to 1.6.0

Release notes

Sourced from github.com/kivigo/kivigo's releases.

v1.6.0

🚀 Release v1.6.0

💥 Breaking changes

  • 🏢 The project has been moved to the new kivigo organization. Please update your import paths accordingly to ensure compatibility.
  • 📦 All backend modules have been relocated to the dedicated kivigo/backends project for improved modularity and maintainability.
  • 🔄 The encoder modules have been moved to the dedicated kivigo/encoders project to improve code organization and maintainability.

📝 Documentation

  • 📚 Updated documentation to reference the new import paths for backend and encoder packages, reflecting their relocation to separate repositories.
Commits

Updates github.com/testcontainers/testcontainers-go from 0.38.0 to 0.39.0

Release notes

Sourced from github.com/testcontainers/testcontainers-go's releases.

v0.39.0

What's Changed

🚀 Features

🐛 Bug Fixes

📖 Documentation

  • docs: clarify no client SDKs in production modules/images, in contributing.md (#3279) @​nimdrak

🧹 Housekeeping

📦 Dependency updates

... (truncated)

Commits
  • da47f5d chore: use new version (v0.39.0) in modules and examples
  • 404b345 chore(atlas): simplify host-port calculation in tests (#3300)
  • 6e14bda feat(atlaslocal): add MongoDB Atlas Local module (#3254)
  • 1fdd847 chore(deps): bump golang.org/x/net from 0.28.0 to 0.38.0 (#3299)
  • 88dead6 feat: allow saving specific platforms for an image (#3218)
  • 44d970c chore(deps): bump dario.cat/mergo from 1.0.1 to 1.0.2 (#3238)
  • ac8fdd3 chore(deps): bump golang.org/x/sys from 0.32.0 to 0.36.0 (#3282)
  • d254caa feat(redpanda): add support for http proxy (#3258)
  • f54a356 chore(deps): bump github/codeql-action from 3.29.3 to 3.30.3 (#3287)
  • 7098d80 chore(go): bump to Go 1.24 as minimal version (#3298)
  • Additional commits viewable in compare view

Updates go.etcd.io/etcd/client/v3 from 3.6.4 to 3.6.5

Release notes

Sourced from go.etcd.io/etcd/client/v3's releases.

v3.6.5

Please check out CHANGELOG for a full list of changes. And make sure to read upgrade guide before upgrading etcd (there may be breaking changes).

For installation guides, please check out play.etcd.io and operating etcd. Latest support status for common architectures and operating systems can be found at supported platforms.

Linux
ETCD_VER=v3.6.5
choose either URL
GOOGLE_URL=https://storage.googleapis.com/etcd
GITHUB_URL=https://github.com/etcd-io/etcd/releases/download
DOWNLOAD_URL=${GOOGLE_URL}
rm -f /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz
rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test
curl -L ${DOWNLOAD_URL}/${ETCD_VER}/etcd-${ETCD_VER}-linux-amd64.tar.gz -o /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz
tar xzvf /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz -C /tmp/etcd-download-test --strip-components=1 --no-same-owner
rm -f /tmp/etcd-${ETCD_VER}-linux-amd64.tar.gz
/tmp/etcd-download-test/etcd --version
/tmp/etcd-download-test/etcdctl version
/tmp/etcd-download-test/etcdutl version
start a local etcd server
/tmp/etcd-download-test/etcd
write,read to etcd
/tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 put foo bar
/tmp/etcd-download-test/etcdctl --endpoints=localhost:2379 get foo

macOS (Darwin)
ETCD_VER=v3.6.5
choose either URL
GOOGLE_URL=https://storage.googleapis.com/etcd
GITHUB_URL=https://github.com/etcd-io/etcd/releases/download
DOWNLOAD_URL=${GOOGLE_URL}
rm -f /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
rm -rf /tmp/etcd-download-test && mkdir -p /tmp/etcd-download-test
curl -L ${DOWNLOAD_URL}/${ETCD_VER}/etcd-${ETCD_VER}-darwin-amd64.zip -o /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
unzip /tmp/etcd-${ETCD_VER}-darwin-amd64.zip -d /tmp && rm -f /tmp/etcd-${ETCD_VER}-darwin-amd64.zip
mv /tmp/etcd-${ETCD_VER}-darwin-amd64/* /tmp/etcd-download-test && rm -rf mv /tmp/etcd-${ETCD_VER}-darwin-amd64
</tr></table>

... (truncated)

Commits
  • a061450 version: bump up to 3.6.5
  • f1199c4 Merge pull request #20664 from ivanvc/release-3.6-go-1.24.7-bump
  • cdf7054 Bump go to 1.24.7
  • 4f94718 Merge pull request #20650 from k8s-infra-cherrypick-robot/cherry-pick-20553-t...
  • 5e92f3c fix 20271: protect backend usage from concurrent applySnapshot and defrag
  • 659eaae Merge pull request #20615 from ahrtr/20250906_lease_renew_3.6
  • 776cfcb Re-check that the lease still exists during the renew process
  • 3100e83 Add an e2e test to reproduce lease Renew returns a wrong response
  • 51275bd Merge pull request #20527 from ivanvc/release-3.6-go-1.24
  • 9deb3f2 Merge pull request #20534 from linux-on-ibm-z/big-endian-TestCorruptedBackupF...
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

@dependabot @github

dependabot Bot commented on behalf of github Sep 22, 2025

Copy link
Copy Markdown
Contributor Author

Labels

The following labels could not be found: backend, dependencies, etcd, go. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@azrod

azrod commented Oct 14, 2025

Copy link
Copy Markdown
Member

@dependabot recreate

@dependabot dependabot Bot force-pushed the dependabot/go_modules/etcd/etcd-dependencies-1ad59d8b3c branch from 8db7ce9 to dee9065 Compare October 14, 2025 19:57
Bumps the etcd-dependencies group in /etcd with 3 updates: [github.com/kivigo/kivigo](https://github.com/kivigo/kivigo), [github.com/testcontainers/testcontainers-go](https://github.com/testcontainers/testcontainers-go) and [go.etcd.io/etcd/client/v3](https://github.com/etcd-io/etcd).


Updates `github.com/kivigo/kivigo` from 1.5.2-0.20250914212215-f5f2f8b90039 to 1.6.0
- [Release notes](https://github.com/kivigo/kivigo/releases)
- [Commits](https://github.com/kivigo/kivigo/commits/v1.6.0)

Updates `github.com/testcontainers/testcontainers-go` from 0.38.0 to 0.39.0
- [Release notes](https://github.com/testcontainers/testcontainers-go/releases)
- [Commits](testcontainers/testcontainers-go@v0.38.0...v0.39.0)

Updates `go.etcd.io/etcd/client/v3` from 3.6.4 to 3.6.5
- [Release notes](https://github.com/etcd-io/etcd/releases)
- [Commits](etcd-io/etcd@v3.6.4...v3.6.5)

---
updated-dependencies:
- dependency-name: github.com/kivigo/kivigo
  dependency-version: 1.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: etcd-dependencies
- dependency-name: github.com/testcontainers/testcontainers-go
  dependency-version: 0.39.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: etcd-dependencies
- dependency-name: go.etcd.io/etcd/client/v3
  dependency-version: 3.6.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: etcd-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@azrod azrod force-pushed the dependabot/go_modules/etcd/etcd-dependencies-1ad59d8b3c branch from dee9065 to 73f1019 Compare October 18, 2025 20:49
@azrod azrod merged commit be9a68f into main Oct 18, 2025
19 checks passed
@dependabot dependabot Bot deleted the dependabot/go_modules/etcd/etcd-dependencies-1ad59d8b3c branch October 18, 2025 21:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant